home *** CD-ROM | disk | FTP | other *** search
/ Risc World 3 / Risc World 3.iso / SOFTWARE / ISSUE2 / PD / VINCE / !ViNCe / zlib / Makefile_o < prev    next >
Makefile  |  2002-03-10  |  2KB  |  84 lines

  1. #
  2. # Makefile for zlib
  3. #
  4. CCflags = -c -depend !Depend -IC: -throwback -Wap 
  5. C++flags = -c -depend !Depend -IC: -throwback -Wa -Ospace
  6. Linkflags = -aif -c++ -o $@ 
  7. ObjAsmflags = -throwback -NoCache -depend !Depend
  8. CMHGflags = 
  9. LibFileflags = -c -o $@
  10. Squeezeflags = -o $@
  11.  
  12. .c++.o:; c++ $(c++flags) -o $@ $< 
  13. .c.o:; cc $(ccflags) -o $@ $< 
  14.  
  15.         
  16. SRC =    c.adler32 c.zutil c.inflate c.infblock c.inftrees \
  17.     c.infcodes c.infutil c.inffast
  18.     
  19. OBJS =    o.adler32 o.zutil o.inflate o.infblock o.inftrees \
  20.     o.infcodes o.infutil o.inffast    
  21.                 
  22. all:    zlib
  23.  
  24. depend:
  25.        cc $(ccflags) -depend !Depend $(SRC)
  26.        
  27. zlib:  $(OBJS)
  28.        libfile $(libfileflags) $(OBJS)
  29.  
  30.  
  31. # Dynamic dependencies:
  32. o.adler32:    c.adler32
  33. o.adler32:    h.zlib
  34. o.adler32:    h.zconf
  35. o.zutil:    c.zutil
  36. o.zutil:    h.zutil
  37. o.zutil:    h.zlib
  38. o.zutil:    h.zconf
  39. o.inflate:    c.inflate
  40. o.inflate:    h.zutil
  41. o.inflate:    h.zlib
  42. o.inflate:    h.zconf
  43. o.inflate:    h.infblock
  44. o.infblock:    c.infblock
  45. o.infblock:    h.zutil
  46. o.infblock:    h.zlib
  47. o.infblock:    h.zconf
  48. o.infblock:    h.infblock
  49. o.infblock:    h.inftrees
  50. o.infblock:    h.infcodes
  51. o.infblock:    h.infutil
  52. o.inftrees:    c.inftrees
  53. o.inftrees:    h.zutil
  54. o.inftrees:    h.zlib
  55. o.inftrees:    h.zconf
  56. o.inftrees:    h.inftrees
  57. o.inftrees:    h.inffixed
  58. o.infcodes:    c.infcodes
  59. o.infcodes:    h.zutil
  60. o.infcodes:    h.zlib
  61. o.infcodes:    h.zconf
  62. o.infcodes:    h.inftrees
  63. o.infcodes:    h.infblock
  64. o.infcodes:    h.infcodes
  65. o.infcodes:    h.infutil
  66. o.infcodes:    h.inffast
  67. o.infutil:    c.infutil
  68. o.infutil:    h.zutil
  69. o.infutil:    h.zlib
  70. o.infutil:    h.zconf
  71. o.infutil:    h.infblock
  72. o.infutil:    h.inftrees
  73. o.infutil:    h.infcodes
  74. o.infutil:    h.infutil
  75. o.inffast:    c.inffast
  76. o.inffast:    h.zutil
  77. o.inffast:    h.zlib
  78. o.inffast:    h.zconf
  79. o.inffast:    h.inftrees
  80. o.inffast:    h.infblock
  81. o.inffast:    h.infcodes
  82. o.inffast:    h.infutil
  83. o.inffast:    h.inffast
  84.